home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6584 / 6584.xpi / chrome / flashvideodownloader / content / dialog.xul < prev    next >
Extensible Markup Language  |  2009-10-05  |  1KB  |  35 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  3. <dialog title="Flash Video Downloader"
  4.         xmlns:html="http://www.w3.org/1999/xhtml"
  5.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  6.         buttons="accept,cancel"
  7.         autosize="true"
  8.         resizable="no"
  9.         onload="FlashVDDialog.init();"
  10.         ondialogaccept="FlashVDDialog.on_accept();"
  11.         ondialogcancel="window.close();">
  12.  
  13. <script type="application/x-javascript" src="chrome://flashvideodownloader/content/dialog.js"/>
  14.  
  15. <box orient="horisontal">
  16.         <box style="width:32px;height:32px;" orient="vertical">
  17.             <image src='chrome://flashvideodownloader/skin/32x32.png' width='32' height='32'/>
  18.         </box>
  19.         <caption  id="header" label="" style="font-size:170%;" />
  20. </box>
  21.  
  22. <groupbox flex="1">
  23.     <caption id="caption" label="" />
  24.  
  25. <vbox flex="1">    
  26.  <hbox flex="1">
  27.     <textbox id="text" multiline="true" rows="10" cols="70" readonly="true" />
  28.  </hbox>
  29.  <hbox>
  30.  </hbox>
  31. </vbox>
  32.  
  33. </groupbox>
  34.  
  35. </dialog>